home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM BV3 / BMUG PD-ROM Version BV3 (CDRM1097900).iso / HyperCard / Games / iNNiNG / iNNiNG / background_2666.txt < prev    next >
Text File  |  1991-10-19  |  1KB  |  64 lines

  1. -- background: 2666 from stack: in
  2. -- bmap block id: 2855
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 2 (field)
  9. -- low flags: 00
  10. -- high flags: 0002
  11. -- rect: left=306 top=161 right=247 bottom=379
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 3
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: zone
  20.  
  21.  
  22. -- part 1 (button)
  23. -- low flags: 80
  24. -- high flags: 2000
  25. -- rect: left=389 top=163 right=219 bottom=455
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 22547 / 22547
  28. -- text alignment: 1
  29. -- font id: 0
  30. -- text size: 12
  31. -- style flags: 0
  32. -- line height: 16
  33. -- part name: ball
  34. ----- HyperTalk script -----
  35. on mouseUp
  36.   repeat 6
  37.     put random(8) into SPIN
  38.     put "baseball" & SPIN into IKE
  39.     set the icon of the target to IKE
  40.   end repeat
  41. end mouseUp
  42.  
  43.  
  44.  
  45. -- part 3 (button)
  46. -- low flags: 00
  47. -- high flags: 2003
  48. -- rect: left=290 top=181 right=203 bottom=302
  49. -- title width / last selected line: 0
  50. -- icon id / first selected line: 0 / 0
  51. -- text alignment: 1
  52. -- font id: 0
  53. -- text size: 12
  54. -- style flags: 0
  55. -- line height: 16
  56. -- part name: bat
  57. ----- HyperTalk script -----
  58. on mousedown
  59.   repeat until the mouse is up
  60.     set the loc of the target to the mouseLoc
  61.   end repeat
  62. end mousedown
  63.  
  64.